home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / j_41_st.zoo / tutorial.zoo / tut / tut43.js < prev    next >
Encoding:
Text File  |  1991-06-06  |  339 b   |  15 lines

  1.         FAMILIES OF FUNCTIONS Ob
  2.    c=. 4 2 _3 2 1
  3.    vandermonde
  4. 1  1  1   1   1    1    1
  5. 1  2  3   4   5    6    7
  6. 1  4  9  16  25   36   49
  7. 1  8 27  64 125  216  343
  8. 1 16 81 256 625 1296 2401
  9.    c +/ . * vandermonde
  10. 6 28 118 348 814 1636 2958
  11.    
  12.    poly=. '':'x.+/ . *|:y.^/i.#x.'
  13.    c poly x
  14. 6 28 118 348 814 1636 2958
  15.